extension sign - traducción al Inglés
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:     

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

extension sign - traducción al Inglés

Sign-extension; Sign-extend; Sign-extended; Sign propagation; Zero extension; Zext

extension sign      
(n.) = señal de ampliación
Ex: An extension sign is a symbol indicating the joining of two or more consecutive classes.
telephone extension         
TERM IN TELEPHONY
Telephone extension; Phone extension; Phone extensions
extensión de teléfono (línea interna de teléfono)
sign off         
  • ARD]] as heard in 1993 (in German).
  • [[Indian-head test pattern]] used in North America
  • Sign-off from the [[Soviet Central Television]] at the end of the day with the anthem
BEGINNING AND ENDING OF OPERATIONS FOR A RADIO OR TELEVISION STATION
Sign-off; Sign-on; Closedown; Signoff; Close down; Sign off; Sign on; Sign-on (broadcast); Sign-off (broadcast); Signon; Indian Lord's Prayer; Sign-on & sign-off
terminar (transmisión)

Definición

extensivo
adj.
Que se extiende o se puede extender, comunicar o aplicar a más cosas que a las que ordinariamente comprende.

Wikipedia

Sign extension

Sign extension (abbreviated as sext) is the operation, in computer arithmetic, of increasing the number of bits of a binary number while preserving the number's sign (positive/negative) and value. This is done by appending digits to the most significant side of the number, following a procedure dependent on the particular signed number representation used.

For example, if six bits are used to represent the number "00 1010" (decimal positive 10) and the sign extend operation increases the word length to 16 bits, then the new representation is simply "0000 0000 0000 1010". Thus, both the value and the fact that the value was positive are maintained.

If ten bits are used to represent the value "11 1111 0001" (decimal negative 15) using two's complement, and this is sign extended to 16 bits, the new representation is "1111 1111 1111 0001". Thus, by padding the left side with ones, the negative sign and the value of the original number are maintained.

In the Intel x86 instruction set, for example, there are two ways of doing sign extension:

  • using the instructions cbw, cwd, cwde, and cdq: convert byte to word, word to doubleword, word to extended doubleword, and doubleword to quadword, respectively (in the x86 context a byte has 8 bits, a word 16 bits, a doubleword and extended doubleword 32 bits, and a quadword 64 bits);
  • using one of the sign extended moves, accomplished by the movsx ("move with sign extension") family of instructions.